|
Server : LiteSpeed System : Linux host 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : idnco5810 ( 1093) PHP Version : 8.2.29 Disable Function : NONE Directory : /var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh
#set -e
CONFDIR=/usr/local/lsws/lsphp80/etc/php/8.0/mods-available
if [ "$1" = "configure" ]; then
phpini="/usr/local/lsws/lsphp80/etc/php/8.0/litespeed/php.ini"
ucf /usr/local/lsws/lsphp80/lib/php/8.0/php.ini-production $phpini
ucfr lsphp80 $phpini
if [ -e /usr/local/lsws/lsphp80/bin/php-maintscript-helper ] ; then
. /usr/local/lsws/lsphp80/bin/php-maintscript-helper
elif [ -e /usr/lib/php/php-maintscript-helper ] ; then
. /usr/lib/php/php-maintscript-helper
fi
if [ -e /usr/local/lsws/lsphp80/bin/phpquery ] ; then
mods=$(/usr/local/lsws/lsphp80/bin/phpquery -M -v 8.0)
elif [ -e /usr/sbin/phpquery ] ; then
mods=$(phpquery -M -v 8.0)
fi
for mod in $mods; do
if [ -e /usr/local/lsws/lsphp80/bin/phpenmod ] ; then
/usr/local/lsws/lsphp80/bin/phpenmod 8.0 litespeed $mod
elif [ -e /usr/sbin/phpenmod ] ; then
phpenmod 8.0 litespeed $mod
fi
done
fi
exit 0